home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / SPLIT60C.ARJ / SPLIT60C.DOC < prev   
Text File  |  1992-08-15  |  15KB  |  292 lines

  1. SPLIT.EXE version 6.0c                                  (August, 1992)
  2. Command
  3.  
  4. Purpose: SPLIT divides a file, at specified points, into smaller files and
  5.          can re-unite them back into the original file, if needed. Files may
  6.          be processed as either binary or text files. When text files are
  7.          split according to the number of lines in each new file, lines are
  8.          truncated at 256 characters. Source file size is displayed in
  9.          bytes. Output files all have the same basename and a series of
  10.          increasing numeric file extensions beginning with ".001".
  11.  
  12.          Files may be re-united with crc check using the SPLIT/u option.
  13.          (See "Unsplit" instructions below).
  14. ______________________________________________________________
  15. Splitting Files: Command line from batch file or menu-driven.
  16. --------------------------------------------------------------
  17.          Input and output filenames and options may be entered on the
  18.          command line. Bad filenames result in a prompt for a new filename.
  19.  
  20. Format:  SPLIT [fnm1] [fnm2] [opt] [num] [y/n]
  21.  
  22.          "fnm1" is the name of input file to be split, including the
  23.          extension and pathname, where needed.
  24.  
  25.          "fnm2" is the output file basename (no extension), including
  26.          pathname, where needed.
  27.  
  28.          "opt" is the split option.  Choices are: (F)iles, (B)ytes,
  29.          (L)ines, or (M)anual.
  30.  
  31.          "num" is the number of files, bytes, or lines in each output file.
  32.  
  33.          "y/n" is yes/no option to pause for new disk with each output file.
  34.  
  35.  
  36. Example: To split BIG.FIL into three equal files named LITTLE.001,
  37.          LITTLE.002, LITTLE.003, and no pause for new disk after each
  38.          new outuput file, you would type the following:
  39.  
  40.          SPLIT big.fil little f 3 n
  41.  
  42. Simply entering "SPLIT" on the command line results in prompts for
  43. the filenames and options.  The "split by" options on the menu are:
  44.  
  45.      F: Specify the number of (F)iles, equal size, to split source into,
  46.      B: Specify the number of (B)ytes in each new output file, or
  47.      L: Specify the number of (L)ines of text in each new file.
  48.  
  49. A blank line entered at "split by" option prompt results in "F" as the
  50. default type of file splitting.
  51.  
  52. The following option is NOT listed on the menu:
  53.  
  54.      M: Copy blocks of bytes (M)anually from source to output file.
  55.  
  56. Although not listed in the menu, manual file splitting is available to
  57. ADVANCED users by choosing option "M" at the "split by" prompt or placing
  58. "m" in the command line as described above.  Manual splitting copies a
  59. specific block of bytes from within the source file into the output file.
  60. Starting and ending bytes are entered for the block of source file bytes
  61. to be copied to the output file. Values from zero to source file size are
  62. entered as the first and last bytes of each new block to be copied to an
  63. output file. If the second byte number is zero or is lower than the first
  64. byte, the program aborts. Bytes up to and including the second byte number
  65. are copied to the new file.  The numeric output file extension is also
  66. entered manually.
  67.  
  68. After each group of bytes is copied, a new extension number, starting point,
  69. and ending point are requested for another output file.  A new file is
  70. created and the next group of bytes is copied to it.  This repeats until the
  71. end of the source file or the program is ended by entry of an ending byte
  72. value less than the starting byte.  A blank line entered for any requested
  73. value results in the default for that value. Default for file extension is
  74. the previous extension number plus one. Default for the starting byte is the
  75. next byte after the last file split left off. Default for the second byte
  76. number is the last byte in the source file. Be careful!  Manual file
  77. splitting is for ADVANCED users.
  78.  
  79. _____________________________________________________________________________
  80. Unsplit files: SPLIT.EXE with the "/u" switch re-unites binary or text files.
  81. -----------------------------------------------------------------------------
  82. Format:  SPLIT/u fnm [outfil] [/x]
  83.  
  84.          "Fnm" is the input file basename (no extension), including
  85.          pathname, where needed.  If this is the only filename entered,
  86.          the resulting re-united file will be named "Fnm.RE$".
  87.  
  88.          "Outfil" is the output filename or basename.  If no extension is
  89.          given, extension ".RE$" is provided to make output filename
  90.          "Outfil.RE$". If a fully qualified filename ("Outfil.ext") is
  91.          given, the re-united file keeps that name. (See examples).
  92.  
  93.          "/X" given as the last command parameter results in deletion
  94.          of the input files as the output file is being re-constructed.
  95.  
  96.     The unsplit function works from the command line only, not menu-driven.
  97.     Re-unites the entire series fnm.001 thru fnm.### into a single file.
  98.     if "SPLIT/u fnm" is entered, the default output file is "fnm.RE$"
  99.  
  100.     If original file CRC was stored in the control file, SPLIT/u will
  101.     verify that the re-united file has the same CRC as the original.
  102.  
  103. Examples:
  104.                                                                                 
  105.     SPLIT/u Infile            -> Infile.RE$ created from series
  106.     SPLIT/u Infile /X         -> Infile.RE$ & infiles deleted
  107.     SPLIT/u Infile Outfil.txt -> Outfil.txt created from series
  108.     SPLIT/u Infile Outfil /X  -> Outfil.RE$ & infiles deleted
  109.  
  110.    (Run SPLIT/u without command parameters for examples/instructions)
  111.  
  112.  
  113. *-* OR *-*
  114.  
  115. Use DOS COPY:
  116. -------------
  117.    1) For text files, just use the copy command:
  118.  
  119.        COPY fnm2.* fnm1.all
  120.              or
  121.        COPY fnm2.001 + fnm2.002 + fnm2.003 fnm1.all
  122.  
  123.    2) For binary files use the /B switch:
  124.  
  125.        COPY/b fnm2.* fnm1.all
  126.              or
  127.        COPY/b fnm2.001 + fnm2.002 + fnm2.003 fnm1.all
  128.  
  129.    This concatenates the pieces back into a single file.  Unlike with
  130.    SPLIT/u, no comparison to the original file crc is made.  Check your
  131.    DOS manual for file concatenation conventions.
  132.  
  133.  
  134. Installing (setup) SPLIT.EXE:
  135. -----------------------------
  136. Format:  SPLIT /s
  137.  
  138. When SPLIT is first run, you are asked whether you want to install the RAM
  139. swap to disk/EMS during shell to dos and whether you want crc file integrity
  140. check for split/unite functions.  To change setup, type SPLIT /s.
  141.  
  142. RAM swapping: If you have limited free conventional RAM, the TRUE option for
  143. swapping RAM to disk/EMS on shell might be best. If your EMS or disk space
  144. is limited or a program conflict exists, the FALSE option might be best.
  145.  
  146. CRC Checking: With slower computers (8088,XT), crc verification may slow
  147. splitting/uniting significantly and you may wish to choose 'F' (FALSE) for
  148. CRC file checking.  For 8-10mhz 80286/AT and faster processors, crc checking
  149. causes no significant slowing and 'T' or 'X' are the best crc options.
  150.  
  151. Options: 'T' = New Crc32 check (Zmodem, PKZIP, more secure method).
  152.          'X' = Crc-CCITT check (Xmodem, older SPLIT commpatibility).
  153.          'F' = Disables any CRC checking.
  154.  
  155. After the program is installed, you may change RAM swap and CRC options
  156. at any time by running SPLIT in "SETUP" mode. (Format:  SPLIT /s).
  157.  
  158.  
  159. Uses for SPLIT.EXE:
  160. -------------------
  161.   o Backing up large files from a hard disk to floppies or from
  162.     high-capacity to low-capacity disks.
  163.   o Making smaller text files out of larger ones for use with limited
  164.     capacity editors like Sidekick's notepad.
  165.   o Split a specific block of bytes out from the middle of a binary file
  166.     (useful in patching some kinds of executable and archive files).
  167.   o Files are split where you want and are easily put back together.
  168.  
  169. Features of SPLIT.EXE :
  170. -----------------------
  171.   o If destination disk is full, SPLIT adjusts size of current output file
  172.     to number of bytes remaining on destination disk and prompts for new
  173.     disk in the output drive.
  174.  
  175.   o 10-03-89: v4.9 & later. Manual Split, binary files. Binary file splits
  176.     incremented in bytes, text file splits incremented in lines of text.
  177.     Self-test at startup detects damaged or altered program.
  178.  
  179.   o 12-01-90: v4.99 - Point-and-shoot file select directory if input file
  180.     not found. Wild card file names ("*" & "???") ok. Scroll limit = 512.
  181.     LZEXE compression for smaller executable SPLIT.EXE program.
  182.  
  183.   o 01-15-91: v 5.11 - UNITE.EXE no longer needed.  SPLIT.EXE re-unites
  184.     files with /u parameter. Control file created with last file split tells
  185.     SPLIT how many files there were. Type "SPLIT/u" for usage instructions.
  186.  
  187.   o SHELL to DOS during binary split operation to change directory, format
  188.     disk, etc. In v 5.x, Shell to Dos can swap program in RAM to disk
  189.     (file "$PLIT.$$$" in root directory contains RAM image) or to EMS
  190.     memory.  Swapping is toggled with "SPLIT /s" setup option.  For DOS
  191.     shell, type "exit" at filename prompt or select "<Go To DOS>" from
  192.     light-bar file selector.  Then type "EXIT" at the DOS command line to
  193.     return to SPLIT from DOS. (SHELL is disabled for TEXT processing).
  194.  
  195.   o 02-17-91: v 5.12 - RAM image file $PLIT.$$$ in root directory ONLY and
  196.     has a normal file attribute. In prior versions, $PLIT.$$$ was a SYSTEM
  197.     file which could be left behind as an un-erasable file in the current
  198.     directory if the computer was turned off without EXIT back to SPLIT
  199.     from DOS SHELL. Remove these old files by running an old SPLIT.EXE from
  200.     v5.00 to v5.11 and shell to DOS from each directory where $PLIT.$$$ was
  201.     left behind. "EXIT" at DOS prompt to return to SPLIT, from each shell
  202.     should remove the extra file. New versions can't remove $PLIT.$$$ from
  203.     SUBDIRECTORIES because it is now deleted from the ROOT directory ONLY.
  204.  
  205.   o 02-18-91: v 5.13 - CRC of original binary file is saved in control
  206.     file and compared to crc of re-united file. If no stored crc or no
  207.     control file, crc comparison is not attempted.
  208.  
  209.   o 02-25-91: v 5.14 - Program now self-installs. CRC and RAM swap toggle
  210.     options prompted from initial run.  Run "SPLIT /s" to change setup
  211.     toggles later.
  212.  
  213.   o 08-25-91: v 5.16 - CRC options expanded:  Crc32 or Xmodem CRC
  214.     (backwardly compatible to v5.13).  Crc32 is more secure crc used by
  215.     PKZIP and ZMODEM.  Faster public domain CRC assembler code.
  216.  
  217.   o 09-02-91: v 5.17 - Sort file selector directory.  Minor Fix: selector
  218.     list scrolls first 512 filenames correctly when total exceeds 512.
  219.  
  220.   o 11-24-91: v 5.18 - Stack fix for file selector dirsort re: prevent
  221.     stack overflow.  Now allows /s and /u options from filename prompt on
  222.     opening screen.
  223.  
  224.   o 12-07-91: v 5.19 - /H or /? command parameter gives help screen.
  225.     Re-unite progress displays in opening screen window. If first fragment
  226.     (fnm2.001) of re-uniting file is in the same directory as the control
  227.     file, SPLIT/u uses the same CRC algorithm as for original file split.
  228.  
  229.   o 03-18-92: v 5.20 - Self-config routine fine tuned.  "/s" entered at
  230.     Output File name prompt could have appended SPLIT config data to the
  231.     active INPUT file if setup function was run at this point in the
  232.     program.  Now ONLY appends data to SPLIT program.
  233.  
  234.   o 04-02-92: v 5.21 - Shell image file name now fully qualified. image
  235.     files were previously left in root of drive when exiting back to SPLIT
  236.     from a different drive.  Filename search now more sophisticated for
  237.     dirname, *.*, and on shell return.
  238.  
  239.   o 07-21-92: v 6.0b - Now compiled with TP6 Compiler.  Date display
  240.     on startup.  Displays obsolete message in two years.
  241.  
  242.   o 08-15-92: v 6.0c - Minor upgrade:  New file "SPLIT.TIP" has usage
  243.     tips & shortcuts. Far calls avoid shell problems. Smaller program
  244.     and changes in sound effects. Identical in function to v 6.0b.
  245.  
  246. File splitter update history for MS-DOS/PC-DOS versions.
  247. -----------------------------------------------------------------------
  248. SPLIT60c *  08-15-92 -- Far calls on SHELL, tips file, sound changes.
  249. SPLIT60b *  07-21-92 -- TP6 compiler, date display, obsolete message.
  250. SPLIT521 *  04-02-92 -- Fix filename check, delete shell image file.
  251. SPLIT520 *  03-18-92 -- Fix setup, append data ONLY to SPLIT program.
  252. SPLIT519 *  12-07-91 -- Help display; SPLIT/u now in main window.
  253. SPLIT518    11-24-91 -- Fix Stack; Allow "/" options on screen prompt.
  254. SPLIT517 *  09-02-91 -- Fix: Selector correctly shows first 512 files.
  255. SPLIT516 *  09-01-91 -- Fast CRC32 or Old CRC check; Sorted directory.
  256. SPLIT514 *  02-24-91 -- Self-configure toggles on/off CRC & RAM swap.
  257. SPLIT513 *  02-18-91 -- Check crc-ccitt of re-united vs original file.
  258. SPLIT512    02-17-91 -- RAM swap to root dir, $PLIT.$$$ attrib = norm.
  259. SPLIT511 *  01-15-91 -- Re-unite function now included in SPLIT.EXE.
  260. SPLIT500 *  01-01-91 -- UNITE.EXE added to re-unite files w/ctrl file.
  261. SPLIT499    12-01-90 -- Light bar file selector, swap RAM to EMS/DISK.
  262. SPLIT49Z *  07-19-90 -- LZEXE compression added, self-check retained.
  263. SPLIT497 *  10-28-89 -- Full cmd parse, fix numeric i/o, DOS 2.x ok.
  264. SPLIT496 *  10-03-89 -- Better shell/ioerr, v49C display bugs fixed.
  265. SPLIT49C *  09-30-89 -- Faster self-check. Had minor display bugs.
  266. SPLIT492-95 07-09/89 -- Improved video, shell, i/o check routines.
  267. SPLIT491    06-27-89 -- Manual splitting returned (dumped in 46m).
  268. SPLIT480 *  01-15-89 -- Add directory, dos shell (1st public release).
  269. SPLIT47     01-30-88 -- Clean up input, change records to bytes.
  270. SPLIT46M    01-29-88 -- First msdos rewrite, similar to cp/m version.
  271. -----------------------------------------------------------------------
  272. *  = version released to public.
  273. -----------------------------------------------------------------------
  274. Inspiration for SPLIT was "SPLITTER", a CP/M program by Mike Nault.
  275.  
  276. Thanks and credit to the following:
  277.  
  278.   o  Steve Ogden for the opening window routines.
  279.   o  Jim Luckas for parts of the "point-and-shoot" selector.
  280.   o  TurboPower for the ExecSwap option when shelling to DOS.
  281.  
  282. With the exception of the ExeSwap routine, source code was derived either
  283. from public domain sources or written originally for this program.
  284.  
  285. ** SPLIT.EXE has NO warranty, expressed or implied. The person using this
  286.    software bears all risk as to unwanted or unexpected effects on data or
  287.    equipment and as to the quality and performance of the software.
  288.  
  289.  
  290.  - M. Dingacci, 8/15/92 -
  291.  
  292.